From 114f18abf6296e3209e51c24181b285fe50f050d Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 8 May 2006 01:07:05 +0000 Subject: [PATCH] * Fixed invalid XML, please test with application/xhtml+xml when changing the output --- includes/SpecialListusers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index 6b1ebb431b..028665c1b0 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -82,7 +82,7 @@ class ListUsersPage extends QueryPage { $self = $this->getTitle(); # Form tag - $out = wfElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) ); + $out = wfOpenElement( 'form', array( 'method' => 'post', 'action' => $self->getLocalUrl() ) ); # Group drop-down list $out .= wfElement( 'label', array( 'for' => 'group' ), wfMsg( 'group' ) ) . ' '; -- 2.20.1